home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_c
/
cpptut22
/
truck.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-19
|
406b
|
23 lines
// Chapter 7 - Program 6
#ifndef TRUCK_H
#define TRUCK_H
#include "vehicle.h"
class truck : public vehicle {
int passenger_load;
float payload;
public:
void init_truck(int how_many = 2, float max_load = 24000.0);
float efficiency(void);
int passengers(void);
};
#endif
// Result of execution
//
// (this file cannot be executed)